home *** CD-ROM | disk | FTP | other *** search
/ IRIX 5.3 for Indy R4400 / IRIX 5.3 for Indy R4400 175MHz.img / dist / eoe2.idb / usr / etc / remoteslip.z / remoteslip
Text File  |  1995-02-28  |  872b  |  34 lines

  1. #!/bin/sh
  2. #    "$Revision: 1.5 $"
  3.  
  4. # This script/configuration file can be used as the 'login shell' for
  5. #   an incoming SLIP line.
  6.  
  7. #   Put the name of this script into the last field of the /etc/passwd
  8. #   entry for the remote machine's account on this machine like
  9. #   the following:
  10. #remhost:habefghijsu46:0:0:Joes remote machine:/:/usr/etc/remoteslip
  11.  
  12. #   Then remove "IRIS*" and add "remhost" or whatever to the case
  13. #   statement below.  If the machine needs special parameters, add
  14. #   them to the arg's to slip, or create special case in the switch
  15. #   statement for the machine.
  16.  
  17.  
  18. case $USER in
  19. # turn on cslip compression for some
  20. IRIS1|IRIS3)
  21.     exec /usr/etc/slip -p cslip -i -r $USER
  22.     ;;
  23.  
  24. # turn on SGI compression for some
  25. IRIS2|IRIS4)
  26.     exec /usr/etc/slip -p comp -i -r $USER
  27.     ;;
  28.  
  29. # simplest default
  30. *)
  31.     exec /usr/etc/slip -i -r $USER
  32.     ;;
  33. esac
  34.